From 4f5e69fa2cb6a93136140e70ade0f8b08af9b5d7 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 20 Jul 2011 12:01:36 +0200 Subject: [PATCH] tests: Fix whitespace between url and ( It's not allowed according to CSS (and browsers). --- gtk/tests/stylecontext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/tests/stylecontext.c b/gtk/tests/stylecontext.c index 13fb29f305..2849180f45 100644 --- a/gtk/tests/stylecontext.c +++ b/gtk/tests/stylecontext.c @@ -125,8 +125,8 @@ test_parse_declarations (void) " center center, 0.8, \n" " color-stop (0.0,#fff),\n" " color-stop (1.0,#000))}\n", - "* { border-image: url (\"" SRCDIR "/test.png\") 3 4 3 4 stretch }", - "* { border-image: url (\"" SRCDIR "/test.png\") 3 4 3 4 repeat stretch}", + "* { border-image: url(\"" SRCDIR "/test.png\") 3 4 3 4 stretch }", + "* { border-image: url(\"" SRCDIR "/test.png\") 3 4 3 4 repeat stretch}", "* { transition: 150ms ease-in-out }", "* { transition: 1s linear loop }", NULL -- 2.30.2